home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / gmakefil.32 < prev    next >
Text File  |  1990-04-08  |  625b  |  35 lines

  1. # Makefile for the GCC TOS library (32 bit int default with debugging)
  2.  
  3. CC=     d:\gnu\bin\gcc.ttp
  4. CPP=     d:\gnu\bin\gcc-cpp.ttp
  5. AR=     d:\gnu\bin\gcc-ar.ttp
  6. AS=    $(CC)
  7. LIB = d:\gnu\lib
  8.  
  9. COPTS= -O -gg -D__NO_INLINE__ $(XFLAGS)
  10.  
  11. # normal CFLAGS
  12. CFLAGS= $(COPTS)
  13.  
  14. # CFLAGS sans -fomit-frame-pointer
  15. CFFLAGS = $(CFLAGS)
  16.  
  17. # cflags for stuff that needs to be compiled with 32 bit ints
  18. CLFLAGS= $(CFLAGS)
  19.  
  20. # flags to $(CC) when it runs the assembler only
  21. ASFLAGS= -c
  22.  
  23. # pre-processor flags
  24. PPFLAGS= -P -D__NO_INLINE__
  25.  
  26.  
  27. # library targets
  28. CLIB= gnugdb.olb
  29. IIOLIB= iiogdb.olb
  30.  
  31. # the stuff to make
  32. ALL= $(CLIB) crt0.o gcrt0.o
  33.  
  34. include mincl
  35.